home *** CD-ROM | disk | FTP | other *** search
- /* DoOL - Pre-link an Oberon program */
-
- options results
-
- if ~show('L','rexxsupport.library') then
- call addlib('rexxsupport.library',0,-30)
- if ~show('L','RexxDosSupport.library') then
- call addlib('RexxDosSupport.library',0,-30)
-
- parse arg module screenname
-
- ol_args = GetVar("OL_ARGS")
-
- call close 'STDERR'
- call open 'STDERR','NIL:','W'
- call close 'STDIN'
- call close 'STDOUT'
- call open 'STDOUT','CON:10/25/540/165/Pre-linking.../SCREEN'||screenname,'RW'
- call pragma '*','STDOUT'
- call pragma 'Stack', 12000
-
- address command 'OBERON-A:C/OL >* <*' ol_args module
-